home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / CLR.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  43 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _Clr( nLine, nCol, nToLine, nToCol ) --> NIL
  8.  
  9. PARAMETERS:
  10.  
  11. nLine   : box coordinates
  12. nCol    : "" ""
  13. nToLine : "" ""
  14. nToCol  : "" ""
  15.  
  16. SHORT:
  17.  
  18. Clear a screen, region of a screen, line, or portion of a line.
  19.  
  20. DESCRIPTION:
  21.  
  22. _Clr() Clears the screen, a line, or a screen area, depending on how
  23. the parameters are used.
  24.  
  25. One Parameter   : nLine cleared
  26. Two Parameters  : nLine cleared from nCol to end of nLine
  27. Three Parameters: Screen cleared from nLine,nCol to end of nToLine
  28. Four Parameters : Screen cleared from nLine,nCol to nToLine,nToCol
  29.  
  30. No Parameters   : Entire screen cleared
  31.  
  32. NOTE:
  33.  
  34.  
  35.  
  36. EXAMPLE:
  37.  
  38. _Clr()           // screen cleared
  39. _Clr(17)         // line 17 cleared, rest of screen left
  40. _Clr(5,10,15,70) // region of screen cleared inside box coordinates.
  41.  
  42. ******************************************************************************/
  43.